home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / decprom / RCS / stubs.c,v < prev   
Encoding:
Text File  |  1990-02-17  |  807 b   |  58 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     90.02.16.16.14.16;  author shirriff;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @#include "sprite.h"
  26. #include "kernel/machMon.h"
  27.  
  28. #if 0
  29. printf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
  30.     char *format;
  31.     Address arg1;
  32.     Address arg2;
  33.     Address arg3;
  34.     Address arg4;
  35.     Address arg5;
  36.     Address arg6;
  37.     Address arg7;
  38.     Address arg8;
  39.     Address arg9;
  40.     Address arg10;
  41. {
  42. #ifndef NO_PRINTF
  43.     Mach_MonPrintf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9,
  44.                arg10);
  45. #endif
  46. }
  47. #endif
  48.  
  49. panic(string)
  50.     char *string;
  51. {
  52. #ifndef NO_PRINTF
  53.     Mach_MonPrintf("Panic: %s\n", string);
  54. #endif
  55.     Mach_MonAbort();
  56. }
  57. @
  58.